In This Topic
Method that calculates the Greatest Common Divisor (GCD) of several positive integer numbers.
Syntax
'Declaration
Public Overloads Shared Function gcd( _
ByVal () As Integer _
) As Integer
public static int gcd(
int[]
)
Parameters
- x
- Array containing the numbers.
See Also